home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Network Tools 2002
/
NextStepPublishing-TotalNetworkTools2002-Win95.iso
/
Archive
/
Web Server
/
TinyWeb Server.EXE
/
CGITEST.ZIP
/
helloexe.pl
< prev
next >
Wrap
Text File
|
2000-01-25
|
517b
|
22 lines
##########################################################################
##
## CGI Testing Example
##
## Copyright (C) 1998-2000 RIT Research Labs
##
## This is a sample 'Hello World' program, where 'Hello' is printed
## from a perl script and 'World' is printed from an executable written in
## C and invoked from the perl script.
##
##########################################################################
print "Content-Type: text/html\n\n";
print "Hello ";
print `world.exe`;